golang.org/x/net/http2.requestParam.authority (field)

9 uses

	golang.org/x/net/http2 (current package)
		server.go#L2140: 		authority: f.PseudoValue("authority"),
		server.go#L2146: 		if rp.path != "" || rp.scheme != "" || rp.authority == "" {
		server.go#L2167: 	if rp.authority == "" {
		server.go#L2168: 		rp.authority = rp.header.Get("Host")
		server.go#L2195: 	scheme, authority, path string
		server.go#L2238: 		url_ = &url.URL{Host: rp.authority}
		server.go#L2239: 		requestURI = rp.authority // mimic HTTP/1 server behavior
		server.go#L2264: 		Host:       rp.authority,
		server.go#L3123: 			authority: msg.url.Host,